home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 November / november_2001.iso / Browsers / Netscape 6.1 / browser.xpi / bin / chrome / comm.jar / content / editor / EdLinkProps.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-06-28  |  3.7 KB  |  86 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Netscape Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/NPL/
  8.    -  
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    -  
  14.    - The Original Code is Mozilla Communicator client code, released
  15.    - March 31, 1998.
  16.    - 
  17.    - The Initial Developer of the Original Code is Netscape
  18.    - Communications Corporation. Portions created by Netscape are
  19.    - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  20.    - Rights Reserved.
  21.    - 
  22.    - Contributor(s): 
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  26. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  27.  
  28. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?> 
  29. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  30.  
  31. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorLinkProperties.dtd">
  32.  
  33. <window title="&windowTitle.label;"
  34.    class="dialog"
  35.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  36.    xmlns:html="http://www.w3.org/1999/xhtml"
  37.    onload = "Startup()"
  38.    orient="vertical" >
  39.  
  40.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  41.   <script type="application/x-javascript" src="chrome://editor/content/EdLinkProps.js"/>
  42.   <script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
  43.   <script type="application/x-javascript" src="chrome://help/content/help.js"/>
  44.  
  45.   <broadcaster id="args" value=""/>
  46.   <spring id="location" offsetY="50" persist="offsetX offsetY"/>
  47.   <keyset id="dialogKeys"/>
  48.  
  49.   <box orient="vertical" style="min-width: 20em">
  50.     <titledbox orient="vertical"><label id="linkTextCaption" align="left"/>
  51.       <text class="label" id="linkTextMessage"/> 
  52.         <textbox id="linkTextInput" flex="1" oninput="ChangeText()"/>
  53.     </titledbox>
  54.  
  55.     <titledbox orient="vertical"><label value="&LinkURLBox.label;"/>
  56.       <text class="label" value="&LinkURLEditField.label;"/>
  57.       <box autostretch="never" valign="middle">
  58.         <textbox id="hrefInput" flex="1" style="min-width: 18em" oninput="ChangeLocation()"/>
  59.         <button class="dialog" id="ChooseFile" flex="1"/>
  60.       </box>
  61.       <html class="wrap" flex="1" id="RemoveLinkMsg" style="margin-bottom: 7px">&RemoveLinkMsg.label;</html>
  62.       <box autostretch="never">
  63.         <button class="dialog" id="MoreFewerButton" align="left" oncommand="onMoreFewer()" persist="more"/>
  64.       </box>
  65.       <spring class="spacer"/>
  66.       <box id="MoreSection" orient="vertical">
  67.         <spring class="spacer"/>
  68.         <text class="label" align="left" value="&NamedAnchorMsg.label;"/>
  69.         <tree rows="4" class="list" id="NamedAnchorList" onselect="SelectNamedAnchor()">
  70.           <treecolgroup><treecol flex="1"/></treecolgroup>
  71.         </tree>
  72.         <spring class="spacer"/>
  73.         <text class="label" align="left" value="&HeadingMsg.label;"/>
  74.         <tree rows="4" class="list" id="HeadingsList" onselect="SelectHeading()">
  75.           <treecolgroup><treecol flex="1"/></treecolgroup>
  76.         </tree>
  77.         <text class="label" flex="1" value="&HeadingMsg2.label;"/>
  78.       </box>
  79.     </titledbox>
  80.   </box>
  81.   <!-- from EdDialogOverlay -->
  82.   <box id="AdvancedEdit"/>
  83.   <!-- from global dialogOverlay -->
  84.   <box id="okCancelHelpButtonsRight"/> 
  85. </window>
  86.